home *** CD-ROM | disk | FTP | other *** search
- property pGusherCount, pGusherList, pFGusherMember, pColorLookUp, pFChan, pCurrChan, pNumOfChans
- global gPuppetList, gBlank, gFirstTime
-
- on new me
- set pGusherCount to 0
- set pGusherList to [:]
- set pFGusherMember to 41
- set pColorLookUp to [pFGusherMember, pFGusherMember + 5, pFGusherMember + 10, pFGusherMember + 15]
- set pFChan to 10
- set pCurrChan to pFChan - 1
- set pNumOfChans to random(4) + 6
- sort(pGusherList)
- return me
- end
-
- on ClickOnBag me
- if pCurrChan >= (pFChan + pNumOfChans - 1) then
- puppetSound(1, 0)
- puppetSound(1, "LetGoGusher")
- updateStage()
- repeat while soundBusy(1)
- end repeat
- exit
- end if
- puppetSnd(1, "GrabGusher")
- set chan to the clickOn
- set the memberNum of sprite chan to the memberNum of sprite chan + 1
- set pCurrChan to pCurrChan + 1
- set pGusherCount to pGusherCount + 1
- set gusherMem to getAt(pColorLookUp, random(4))
- set the castNum of sprite pCurrChan to gusherMem
- updateStage()
- mDrag(me, pCurrChan, 0)
- set the memberNum of sprite chan to the memberNum of sprite chan - 1
- end
-
- on mDrag me, chan, deleteFlag
- if deleteFlag then
- set listSize to count(pGusherList)
- repeat with index = 1 to listSize
- if getAt(getAt(pGusherList, index), 2) = chan then
- deleteAt(pGusherList, index)
- exit repeat
- end if
- end repeat
- end if
- set lastLoc to the loc of sprite chan
- repeat while the mouseDown
- set lastLoc to the loc of sprite chan
- set the locH of sprite chan to constrainH(1, the mouseH)
- set the locV of sprite chan to constrainV(1, the mouseV)
- updateScreen()
- updateStage()
- end repeat
- puppetSound(1, 0)
- puppetSound("LetGoGusher")
- updateStage()
- set slope to the loc of sprite chan - lastLoc
- set finalH to (10 * the locH of slope) + the locH of sprite chan
- set finalV to (10 * the locV of slope) + the locV of sprite chan
- slide(chan, finalH, finalV, 20, 2)
- mUpdateList(me, chan, the castNum of sprite chan)
- end
-
- on mUpdateList me, chan
- addProp(pGusherList, the locH of sprite chan, [the locV of sprite chan, chan, the castNum of sprite chan])
- sort(pGusherList)
- end
-